home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / psnews_xss.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  83 lines

  1. #
  2. #  This script was written by David Maciejak <david dot maciejak at kyxar dot fr>
  3. #  based on work from
  4. #  (C) Tenable Network Security
  5. #
  6. #  Ref:  Michal Blaszczak <wacky nicponie org>
  7. # This script is released under the GNU GPLv2
  8.  
  9. if(description)
  10. {
  11.  script_id(14685);
  12.  script_bugtraq_id(11124);
  13.  script_version ("$Revision: 1.4 $");
  14.  
  15.  name["english"] = "PsNews XSS";
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = "
  19. The remote server is running a version of PsNews (a content management system)
  20. which is older than 1.2.
  21.  
  22. This version is affected by multiple cross-site scripting flaws. An attacker
  23. may exploit these to steal the cookies from legitimate users of this website.
  24.  
  25. Solution : Upgrade to a newer version.
  26. Risk factor : Medium";
  27.  
  28.  
  29.  script_description(english:desc["english"]);
  30.  
  31.  summary["english"] = "check PsNews XSS flaws";
  32.  script_summary(english:summary["english"]);
  33.  
  34.  script_category(ACT_GATHER_INFO);
  35.  
  36.  script_copyright(english:"This script is Copyright (C) 2004 David Maciejak",
  37.         francais:"Ce script est Copyright (C) 2004 David Maciejak");
  38.         
  39.  family["english"] = "CGI abuses : XSS";
  40.  family["francais"] = "Abus de CGI";
  41.  
  42.  script_family(english:family["english"]);
  43.  script_dependencie("cross_site_scripting.nasl", "http_version.nasl");
  44.  script_require_ports("Services/www", 80);
  45.  exit(0);
  46. }
  47.  
  48. #
  49. # The script code starts here
  50. #
  51.  
  52. include("http_func.inc");
  53. include("http_keepalive.inc");
  54.  
  55. port = get_kb_item("Services/www");
  56. if(!port) port = 80;
  57. if ( ! can_host_php(port:port) ) exit(0);
  58. if ( get_kb_item("www/" + port + "/generic_xss") ) exit(0);
  59.  
  60. if(get_port_state(port))
  61. {
  62.   foreach dir ( cgi_dirs() )
  63.   {
  64.   buf = http_get(item:dir + "/index.php?function=show_all&no=%253cscript>foo%253c/script>", port:port);
  65.   r = http_keepalive_send_recv(port:port, data:buf, bodyonly:1);
  66.   if( r == NULL )exit(0);
  67.   if(egrep(pattern:"<script>foo</script>", string:r))
  68.   {
  69.      security_warning(port);
  70.     exit(0);
  71.   }
  72.   buf = http_get(item:dir + "/index.php?function=add_kom&no=<script>foo</script>", port:port);
  73.   r = http_keepalive_send_recv(port:port, data:buf, bodyonly:1);
  74.   if( r == NULL )exit(0);
  75.   if(egrep(pattern:"<script>foo</script>", string:r))
  76.   {
  77.      security_warning(port);
  78.     exit(0);
  79.   }
  80.  }
  81. }
  82. exit(0);
  83.